home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_06 / parker2 / cl.bat < prev   
DOS Batch File  |  1994-09-19  |  128b  |  7 lines

  1. bcc -c -v -y -ms  %1.cpp
  2. @if errorlevel 1 goto end
  3. bcc -v -y -ms %1.obj %2.obj 
  4. @if errorlevel 1 goto end
  5. del %1.obj
  6. :end
  7.